[USER (data scientist)]: Awesome! Now, I need to make dummy variables for 'credit_history'. What's the best way to do that? Please generate the code with the output in dataframe type.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd  
import pickle
from decision_company import read_csv_file, get_dummies

# Load the dataset  
credit_customers = read_csv_file("credit_customers.csv")  
  
# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]  
</code1>
# YOUR SOLUTION END

print("data_for_clustering:\n", data_for_clustering)    

# save data
pickle.dump(data_for_clustering,open("./pred_result/data_for_clustering.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: No problem! You can create dummy variables using proper functions from decision_company like this:

# MY SOLUTION BEGIN:
